home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-10-22 | 551 b | 24 lines | [TEXT/MSWD] |
- get-n-chord-part
- chords part &optional (from 'top)
-
- selects the n-part of chords
- that is when n is 1 and from is 'top
- selects the highest note from each chord.
- when n is 2 the second highest . . .
- when from is 'bottom selects the lowest
- second lowest . . .
-
- works only in a chromatic context.
-
-
- (setq chords '(abcd efgh ijkl mno pq r =))
-
- (get-n-chord-part chords 1 'top)
- ->(d h l o q r =)
- (get-n-chord-part chords 2 'top)
- ->(c g k n p r =)
- (get-n-chord-part chords 1 'bottom)
- ->(a e i m p r =)
- (get-n-chord-part chords 2 'bottom)
- ->(b f j n q r =)
-